home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Seq / MIDIEvents.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  67 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   MIDIEvents.h - It stores the midi events from midi file or sequencer
  5.   Copyright (C) 2003-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22. #ifndef MIDI_EVENTS_H
  23. #define MIDI_EVENTS_H
  24.  
  25. #include "../globals.h"
  26. #define NUM_MIDI_TRACKS NUM_MIDI_CHANNELS
  27.  
  28. class MIDIEvents{
  29.     friend class MIDIFile;
  30.     public:
  31.     MIDIEvents();
  32.     ~MIDIEvents();
  33.  
  34.     protected:
  35.  
  36.     /* Events */
  37.     struct event{
  38.         int deltatime;
  39.     int channel;//on what midi channel is
  40.     int type,par1,par2;//type=1 for note, type=2 for controller, type=255 for time messages
  41.     } tmpevent;
  42.     struct listpos{
  43.     event ev;
  44.         struct listpos *next;
  45.     };
  46.     struct list{
  47.     listpos *first,*current;
  48.     int size;//how many events are
  49.     double length;//in seconds
  50.     };
  51.     struct {
  52.     list track;//the stored track
  53.     list record;//the track being "recorded" from midi
  54.     } miditrack[NUM_MIDI_TRACKS];
  55.     
  56.     void writeevent(list *l,event *ev);
  57.     void readevent(list *l,event *ev);
  58.     
  59.     void rewindlist(list *l);
  60.     void deletelist(list *l);
  61.     void deletelistreference(list *l);
  62.  
  63. };
  64.  
  65.  
  66. #endif
  67.